home *** CD-ROM | disk | FTP | other *** search
/ PC Answers 1995 May / PC Answers CD-ROM 7 (Future Publishing) (May 1995).iso / vbits / code / cert / trk3_eg / help / help.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1994-10-12  |  837 b   |  33 lines

  1. VERSION 2.00
  2. Begin Form Form1 
  3.    Caption         =   "Form1"
  4.    ClientHeight    =   4020
  5.    ClientLeft      =   1095
  6.    ClientTop       =   1485
  7.    ClientWidth     =   7365
  8.    Height          =   4425
  9.    Left            =   1035
  10.    LinkTopic       =   "Form1"
  11.    ScaleHeight     =   4020
  12.    ScaleWidth      =   7365
  13.    Top             =   1140
  14.    Width           =   7485
  15.    Begin CommandButton cmdHelp 
  16.       Caption         =   "&Help"
  17.       Height          =   855
  18.       Left            =   3000
  19.       TabIndex        =   0
  20.       Top             =   480
  21.       Width           =   1815
  22.    End
  23.    Begin CommonDialog CDHelp 
  24.       Left            =   120
  25.       Top             =   360
  26.    End
  27. Option Explicit
  28. Sub cmdHelp_Click ()
  29. cd.helpfile = "Marc.hlp"
  30. cd.helpcontext = 1
  31. cd.action = 6
  32. End Sub
  33.